home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000307_fdc@columbia.edu_Fri Sep 26 10:14:38 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  1KB  |  39 lines

  1. Article: 14551 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news-not-for-mail
  3. From: fdc@sesame.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: How to use fopen
  6. Date: 26 Sep 2003 10:14:18 -0400
  7. Organization: Columbia University
  8. Lines: 21
  9. Message-ID: <bl1hjq$s8o$1@sesame.cc.columbia.edu>
  10. References: <NFXcb.181$vB7.165756109@newssvr11.news.prodigy.com>
  11. Reply-To: fdc@columbia.edu
  12. NNTP-Posting-Host: sesame.cc.columbia.edu
  13. X-Trace: newsmaster.cc.columbia.edu 1064585659 1871 128.59.59.56 (26 Sep 2003 14:14:19 GMT)
  14. X-Complaints-To: postmaster@columbia.edu
  15. NNTP-Posting-Date: 26 Sep 2003 14:14:19 GMT
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14551
  17.  
  18. In article <NFXcb.181$vB7.165756109@newssvr11.news.prodigy.com>,
  19. Jun Zhang  <nugulus@netscape.net> wrote:
  20. : What I have in mind is to say,
  21. : fopen /read \%c inputfile arrayname
  22. : and then start to access the array elements by,
  23. : fread ...
  24. : How can I exactly do this?
  25. : (I was told the manual is shipped, and take 1 to 2 weeks to deliver.)
  26. You have to be more specific.  Do you want each line of the file to
  27. be assigned to an array element?  Then:
  28.  
  29.   fread /line \%c \&a[\%i]
  30.  
  31. or whatever.  You don't have to wait for the manual to read about arrays
  32. and file i/o.  See:
  33.  
  34.   http://www.columbia.edu/kermit/ckermit70.html#x7.10  (about arrays)
  35.   http://www.columbia.edu/kermit/ckermit70.html#x1.22  (about file i/o)
  36.  
  37. - Frank
  38.